home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / pascal / pars7.exe / PARS7GLB.PAS < prev    next >
Pascal/Delphi Source File  |  1993-04-11  |  451b  |  20 lines

  1. unit pars7glb;
  2. {$O+,F+}
  3. interface
  4. uses realtype;
  5. type rpointer=^float;
  6.      onestep=procedure;
  7.      operationpointer=^operation;
  8.      operation=record
  9.              arg1,arg2:rpointer;
  10.              dest:rpointer;
  11.              next:operationpointer;
  12.              op:onestep;
  13.              opnum:word;
  14.             end;
  15. var randomsize,randomresult:word;
  16.     randomiterates,contrand:boolean;
  17.     contrandresult:float;
  18. implementation
  19.  
  20. end.